home *** CD-ROM | disk | FTP | other *** search
/ Amiga Tools 3 / Amiga Tools 3.iso / rexx / toggletoolsstay.pvrx < prev    next >
Text File  |  1991-08-09  |  372b  |  16 lines

  1. /* ToggleToolsStay.pvrx---toggle ToolsStay mode on or off.
  2.    Copyright © 1991 by Stylus, Inc.
  3.    (requires v. 2.X.31 or greater) */
  4.  
  5. /* Always do this for a ProVector AREXX macro */
  6. 'Lock'
  7. if RC ~= 0 then exit
  8.  
  9. 'GetScreenFormat' Var
  10. if Var.ToolsStay=False then Var.ToolsStay=True
  11. else Var.ToolsStay=False
  12. 'SetScreenFormat' Var
  13.  
  14. /* All done!  Unlock ProVector */
  15. 'UnLock'
  16.